home *** CD-ROM | disk | FTP | other *** search
- // itgdemo.h : main header file for the ITGDEMO application
- //
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
-
- /////////////////////////////////////////////////////////////////////////////
- // CItgDemoApp:
- // See itgdemo.cpp for the implementation of this class
- //
-
- class CItgDemoApp : public CWinApp
- {
- public:
- CItgDemoApp();
-
- // Overrides
- virtual BOOL InitInstance();
- virtual CDocument *OpenDocumentFile(LPCSTR lpszFileName);
-
- // Implementation
-
- //{{AFX_MSG(CItgDemoApp)
- afx_msg void OnAppAbout();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- // VB-Event extern declarations
-
- //{{AFX_VBX_REGISTER()
- extern UINT NEAR VBN_KEYPRESS;
- extern UINT NEAR VBN_ITEMCLICK;
- extern UINT NEAR VBN_ITEMCONNECT;
- extern UINT NEAR VBN_KEYDOWN;
- extern UINT NEAR VBN_KEYUP;
- extern UINT NEAR VBN_CLICK;
- extern UINT NEAR VBN_SELECTRECT;
- extern UINT NEAR VBN_ITEMDBLCLICK;
- extern UINT NEAR VBN_DBLCLICK;
- extern UINT NEAR VBN_ITEMMOUSEMOVE;
- extern UINT NEAR VBN_MOUSEDOWN;
- extern UINT NEAR VBN_MOUSEUP;
- extern UINT NEAR VBN_LINEDBLCLICK;
- //}}AFX_VBX_REGISTER
-
- /////////////////////////////////////////////////////////////////////////////
-